home *** CD-ROM | disk | FTP | other *** search
/ Multicollection 5 Soft 1997 / Multicollection 5 soft 1997 (Win NT 4.0 Work, Serv, OS2).iso / nt40_wrk / classes.zi_ / CLASSES.ZIP / java / awt / GridBagLayoutInfo.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-08-23  |  571 b   |  13 lines

  1. package java.awt;
  2.  
  3. class GridBagLayoutInfo {
  4.    int width;
  5.    int height;
  6.    int startx;
  7.    int starty;
  8.    int[] minWidth = new int[128];
  9.    int[] minHeight = new int[128];
  10.    double[] weightX = new double[128];
  11.    double[] weightY = new double[128];
  12. }
  13.